.show-ratings-table-container {
    height: 100%;
    width: 100%;
    grid-area: table;
    overflow-x: auto;
}

.content-table td {
    text-align: center;
}

#show-ratings-container {
    height: 100%;
    width: 100%;
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 5% 1fr 5%;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        ". header ."
        ". table ."
;
    align-items: center;
    justify-items: center;
    overflow-x: visible;
}

.show-ratings-table-container {
    grid-area: table;
}
